home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 May / macformat-024.iso / Shareware City / Developers / LOBE.src / common.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-13  |  534 b   |  29 lines  |  [TEXT/MPS ]

  1.  
  2. #ifndef _bvcommon_h_
  3. #define _bvcommon_h_
  4.  
  5. typedef struct    BusVars {
  6.     short    Locked;
  7.     short    Behavior;
  8.     short    Do4;
  9.     long    Snd;        /* not in prefs resource a runtime handle only */
  10.     } BusVars;
  11.  
  12. /*
  13.  * You should only set Snd if you set Behavior
  14.  * to Behavior_Beep. Also you must dispose of the
  15.  * snd when you change the behavior state
  16.  */
  17. #define Locked_stop  -1
  18. #define Locked_run 0
  19.  
  20. #define Behavior_Ignore 0
  21. #define Behavior_DebugStrGo 1
  22. #define Behavior_DebugStrStop 2
  23.  
  24. #define Do4_nope 0
  25. #define Do4_yep 1
  26.  
  27. #endif /* _bvcommon_h_ */
  28.  
  29.